Arduino HM-10 bilgisayardan veri alma -ACİL
Merhaba arkadaşlar ben hm-10 moduluu kullanarak bilgisayar seri porttan veri görmek istiyorum. Daha önce bluetooth kullanmadım ARduino da çok az kullandığım var. internettende örnekler genellikle android üzerinden veri transferi ile ilgili. aşağıda kendim uğraştığım kodu yazdım . hata veriyor. nasıl bir şey yapabilirim? yardımcı olabilirseniz sevinirim.
#define RX 11
#define TX 10
#include <SoftwareSerial.h>
SoftwareSerial bluetooth(TX, RX);
void setup() {
SerialBT.begin(9600);
SerialBT.println("Bluetooth Veri");
}
void loop() {
// put your main code here, to run repeatedly:
// read the input on analog pin 0:
int sensorVal = analogRead(A0);
int sensorGND = analogRead(A1);
int sensorValue=-sensorVal+sensorGND;
// Convert the analog reading (which goes from 0 - 1023) to a voltage (0 - 5V):
float voltage = sensorValue * (5.0 / 1023.0)*100;
// print out the value you read:
SerialBT.println(voltage);
delay(100);
}